home *** CD-ROM | disk | FTP | other *** search
/ Private Casting / Casting One.bin / Docs / Interview.dir / Internal_55.ls < prev    next >
Encoding:
Text File  |  1997-01-22  |  489 b   |  24 lines

  1. on mouseEnter
  2.   cursor([cast "curs", cast "mask"])
  3.   puppetSprite(the currentSpriteNum, 1)
  4.   set the blend of sprite the currentSpriteNum to 50
  5. end
  6.  
  7. on mouseLeave
  8.   cursor(-1)
  9.   set the blend of sprite the currentSpriteNum to 100
  10. end
  11.  
  12. on mouseUp
  13.   cursor(-1)
  14.   set the movieRate of sprite 18 to 0
  15.   set the visible of sprite 18 to 0
  16.   puppetSprite(18, 0)
  17.   repeat with x = 12 to 16
  18.     puppetSprite(x, 0)
  19.     set the visible of sprite x to 0
  20.   end repeat
  21.   updateStage()
  22.   go("pregs")
  23. end
  24.